home *** CD-ROM | disk | FTP | other *** search
/ PC Media 3 / PC MEDIA CD03.iso / microbyt / dragon / dragon.bat < prev    next >
Encoding:
DOS Batch File  |  1993-07-14  |  2.2 KB  |  95 lines

  1. @echo off
  2.  
  3. rem
  4. rem     DragonSphere -- demo disk driver batch file
  5. rem
  6. rem     by Brian Reynolds       14-Jul-93
  7. rem
  8.  
  9. set mads=
  10. call setsnd.bat
  11.  
  12. :loopdemo
  13. cls
  14. echo ***************************************************
  15. echo *                  DRAGON SPHERE                  *
  16. echo * Copyright (c) 1993 by MicroProse Software, Inc. *
  17. echo ***************************************************
  18. echo * "DRAGON"         Runs full demo once            *
  19. echo * "DRAGON GAME"    Runs game demo only            *
  20. echo * "DRAGON LOOP"    Loop opening demo (no ESC key) *
  21. echo ***************************************************
  22. echo Loading DRAGON SPHERE demonstration (version 1.01) . . .
  23. if "%1" == "loop" goto noesc
  24. if "%1" == "LOOP" goto noesc
  25. echo (Press ESC key at any time to exit).
  26. echo.
  27.  
  28. :noesc
  29.  
  30. pauses
  31. if errorlevel 2 goto noemsmem
  32. if errorlevel 3 goto noconvmem
  33.  
  34. if "%1" == "game" goto game
  35. if "%1" == "GAME" goto game
  36.  
  37. if "%1" == "LOOP" goto next
  38. if "%1" == "loop" goto next
  39.  
  40. :next
  41. echo Loading DRAGON SPHERE cinematic demo . . .
  42. echo.
  43. animview %mpslabs% -p @demodisk.res
  44. if "%1" == "LOOP" goto loopdemo
  45. if "%1" == "loop" goto loopdemo
  46.  
  47. if errorlevel 1 goto done
  48.  
  49. goto startgame
  50.  
  51. :game
  52. animview %mpslabs% -p @labslogo.res
  53. if errorlevel 1 goto done
  54.  
  55. :startgame
  56. echo Loading DRAGON SPHERE interactive demo . . .
  57. echo.
  58. sphere -p %mpslabs%
  59.  
  60. :done
  61. cls
  62. echo DRAGON SPHERE --
  63. echo    Coming in Fall 1993 to a
  64. echo       software store near you!
  65. echo.
  66.  
  67. goto stop
  68.  
  69. :noemsmem
  70. cls
  71. echo In order to run the DRAGON SPHERE demo, you must
  72. echo have an EMS driver installed.  You must also have at least
  73. echo 2 megabytes (total) of memory in your system.  An EMS driver
  74. echo can generally be installed by adding the line:
  75. echo     device=c:\dos\emm386.exe
  76. echo to your CONFIG.SYS file.
  77. goto nomem
  78.  
  79. :noconvmem
  80. cls
  81. echo You do not have enough free memory to run the DRAGON
  82. echo demo.  You must have at least 575,000 bytes of free memory
  83. echo (as shown by the CHKDSK or MEM command) in order to view
  84. echo the demo.  Usually, easiest way to free up memory is to
  85. echo remove "TSR" programs from your AUTOEXEC.BAT file.
  86. echo.
  87.  
  88. :nomem
  89. echo.
  90. echo We are very sorry for the inconvenience.
  91. echo.
  92. :stop
  93. set mpslabs=
  94.  
  95.